DevJourney

Python/RegEx/String has sequences of lowercase letters joined by an underscore/String has sequences of lowercase letters joined by an underscore.py

import re 

str = input("Enter a string: ")
rePat = r'[a-z]+[_][a-z]+'
if re.findall(rePat, str):
    print("Valid")
else:
    print("Invalid")
View on GitHub